std::this_thread::sleep_for
From Cppreference
| C++ Standard Library | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Thread support library | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Defined in header <thread>
| ||
| template< typename Rep, typename Period >
void sleep_for( std::chrono::duration<Rep,Period> sleep_duration ); | (C++11 feature) | |
Blocks the execution of the current thread for specified sleep_duration. May block for longer than sleep_duration.
Contents |
[edit] Parameters
| sleep_duration | - | time duration to sleep |
[edit] Return value
(none)
[edit] Exceptions
[edit] See also
| stops the execution of the current thread until a specified time point (function) | ||